* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0a192f;
            --secondary: #dfb429; /* Gold color */
            --accent: #ff6b6b;
            --glass: rgba(48, 41, 6, 0.27);
            --text: #eef2f7;;
            --gold-light: #f9e076;
            --gold-medium: #d4af37;
            --gold-dark: #b8860b;
            --dark-bg: #121212;
            --light-bg: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color:  rgba(252, 246, 197, 0.6);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}
        /* Glass Morphism Styles */
        .glass {
            background: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            /* border: 1px solid var(--glass-border); */
            border-radius: 0px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }

        .glass:hover {
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
            border-color: rgba(212, 175, 55, 0.4);
        }

        /* Gold decorative elements */
        .gold-divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold-medium), transparent);
            margin: 20px 0;
            border-radius: 2px;
        }
/* button */
        .btn {
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            border: 2px solid var(--secondary);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--secondary);
              border: 2px solid var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
       
 /* Section Styling */
        .section {
            padding: 80px 0;
        }
       .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header h2 {
            /* font-size: 2.8rem; */
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            color: var(--primary);
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        
        .section-header p {
            color: var(--navy-medium);
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        

        
        .contact-page {
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        /* Hero Section */
          .hero {
            position: relative;
           height:100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        
        }

        .hero-video-container video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
            filter: brightness(0.7);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(179, 165, 105, 0.5) 0%, rgba(233, 198, 82, 0.1) 100%);
             background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
            z-index: 1;
        }
     
        
       
       
        
      .hero-title {
           /* font-size: 2.8rem; */
            line-height: 1.2;
            background: linear-gradient(to right, var(--gold-light), var(--gold-medium));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.5px;
            text-align: center;
        }
        
        .hero-text {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.8;
            max-width: 600px;
            /* margin-left: auto;
            margin-right: auto; */
            margin:auto;
            color: var(--text);
               text-align: center;
        }
         /* WhatsApp Widget Styles */
        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .whatsapp-bubble {
            background-color: #fff;
            border-radius: 24px;
            padding: 12px 20px;
            margin-bottom: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            max-width: 220px;
            opacity: 1;
            transition: opacity 0.8s ease, transform 0.5s ease;
            transform: translateY(0);
            animation: floatBubble 3s ease-in-out infinite;
        }
        
        .whatsapp-bubble.hidden {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }
        
        .whatsapp-bubble:after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 30px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #fff;
        }
        
        .whatsapp-bubble p {
            color: #333;
            font-weight: 500;
            font-size: 15px;
            margin: 0;
        }
        
        .whatsapp-bubble p i {
            color: #25D366;
            margin-right: 5px;
        }
        
        .whatsapp-button {
            background-color: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
             overflow: visible !important;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-button:active {
            transform: scale(0.95);
        }
        
        .whatsapp-button i {
            color: white;
            font-size: 32px;
        }
        
        .whatsapp-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            z-index: -1;
           animation: whatsapp-pulse-fix 2s infinite !important;
    background-color: #25D366 !important;
    opacity: 0.7 !important;
        }
        
        /* .first-visit-message {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1001;
            transform: translateX(0);
            transition: transform 0.5s ease, opacity 0.5s ease;
        }
        
        .first-visit-message.hidden {
            transform: translateX(150%);
            opacity: 0;
        } */
        
        @keyframes floatBubble {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
     

        /* FIX FOR WHATSAPP PULSE */

@keyframes whatsapp-pulse-fix {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
        /* Responsive design */
        @media (max-width: 768px) {
            .whatsapp-widget {
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-bubble {
                max-width: 180px;
                font-size: 14px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .whatsapp-widget {
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-button {
                width: 55px;
                height: 55px;
            }
            
            .whatsapp-button i {
                font-size: 28px;
            }
            
            .whatsapp-bubble {
                padding: 10px 15px;
                max-width: 160px;
            }
        }
         MOBILE TOGGLE BUTTONS STYLING
   /*============================================ */

.mobile-toggle-buttons {
    position: relative;
    margin: 20px auto 30px;
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-container {
    display: flex;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

.toggle-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    z-index: 2;
}

.toggle-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-dark),var(--secondary));
    box-shadow: 0 4px 15px rgba(234, 199, 102, 0.363);
}

.toggle-btn:not(.active):hover {
    color: #333;
    background: rgba(255, 255, 255, 0.2);
}

.toggle-indicator {
    position: absolute;
    top: 8px;
    height: calc(100% - 16px);
    width: 50%;
     background: linear-gradient(135deg, var(--primary), var(--gold-dark),var(--gold-medium));
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(234, 221, 102, 0.3);
    z-index: 0;
}



/* Optional: Add some animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-content.mobile-active,
.form-info.mobile-active {
    animation: fadeInUp 0.5s ease;
}
        /* Main Content */
        .contact-container {
             /* background:rgb(253, 252, 244); */
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Contact Form */
         .form-section {
            background:white;
        }
        
        .form-container {
            background-color: white;
            border-radius: 12px;
                   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .form-info {
            background: linear-gradient(135deg, var(--primary), var(--gold-dark),var(--primary));
            color: white;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .form-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-methods {
            margin-top: 2rem;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
         @media (max-width: 900px) {
           .contact-method {
            display: block;
            align-items: center;
         
        }
            .contact-method p{
                font-size: .9em;
            }
         .contact-method h4 {
            margin-top: 0.5rem;
        }
        }
        /* Form content containers for mobile */

        .contact-icon-large {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.2);
               border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            font-size: 1.5rem;
        }
        
        .form-content {
            padding: 3rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .whatsapp-cta {
            width: 100%;
             background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 1rem;
              box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
              border:none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 1.5rem;
            transition: background-color 0.3s;
        }
        
        .whatsapp-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(18, 140, 126, 0.6);
            color: white;
            transition: .8s all;
            background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
                border:none;
        }
        
 /* Responsive Design */
 @media (max-width: 768px) {
    .form-content,
    .form-info {
        transition: all 0.5s ease;
    }
  
 

    /* Ensure both are visible on desktop */
    /* .d-md-block {
        display: block !important;
    } */
}

    /* @media (max-width: 768px) {
        .form-info { display: none; }
    } */

        @media (max-width: 992px) {
            .form-info {
                padding: 2rem;
            }
        }
        /* Investor Relations */
       
        /* Contact Info */
        .contact-info {
            flex: 1;
            min-width: 300px;
              
        }
        
        .info-card {
               background: rgba(252, 252, 164, 0.3);
                 background-color:  rgba(252, 246, 197, 0.7);
            border-radius: 15px;
            padding: 40px;
            color: var(--text-light);
            box-shadow: 0 15px 40px rgba(10, 25, 47, 0.15);
            margin-bottom: 30px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
      
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-detail i {
            font-size: 1.3rem;
            color: var(--secondary);
            min-width: 30px;
            margin-top: 5px;
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .contact-text p {
            color: var(--text-gray);
            line-height: 1.7;
        }
        
        .business-hours {
            background: rgba(172, 172, 112, 0.3);
               box-shadow: 0 15px 40px rgba(10, 25, 47, 0.15); 
            border-radius: 4px;
            padding: 20px;
            margin-top: 20px;
            /* border: 1px solid var(--gold-dark); */
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--gold-dark);
        }
        
        .hours-item:last-child {
            border-bottom: none;
        }
        
        .day {
             color: var(--primary);
        }
        
        .hours {
            color: var(--primary);
            font-weight: 500;
        }
        
        /* Social Media */
        .social-media {
            text-align: center;
            margin-top: 30px;
        }
        
        .social-media h4 {
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
           background-color: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .social-icons a:hover {
               background: rgba(212, 175, 55, 0.1);
            color: var(--gold-dark);
            transform: translateY(-5px);
        }
        
        /* Map Section */
        .map-section {
            padding: 0 20px 80px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(10, 25, 47, 0.2);
            height: 500px;
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .map-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            /* background: rgba(10, 25, 47, 0.9); */
                background: linear-gradient(rgba(18, 18, 18, 0.3), var(--glass));
            padding: 20px;
            border-radius: 10px;
            color: white;
            max-width: 300px;
            border: 1px solid var(--gold-primary);
            z-index: 2;
        }
        
        .map-overlay h3 {
            color: var(--gold-secondary);
            margin-bottom: 10px;
        }
        
        .map-overlay p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 5px;
        }
        
      /* Footer */

          .footer {
             background-color:  rgba(15, 14, 0, 0.7);
            color: rgb(247, 243, 243);
            padding: 0px 0 0;
            position: relative;
            overflow: hidden;
    font-family: 'Montserrat', sans-serif;
        }
        
        /* Decorative Elements */
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, var(--secondary), var(--gold-light), var(--gold-medium))
        }
        
       /* Footer Grid */
     
        .contain-decor{
              background: linear-gradient(rgba(18, 18, 18, 0.1), var(--glass));
              padding: 2em;
              border: 10px;
        }
        /* Footer Columns */
        .footer-column {
            margin-bottom: 20px;
            padding: 1em;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            color: white;
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
              font-family: 'Playfair Display', serif;
        }
        
        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold-medium);
        }
        
        .footer-about p {
            color: #cacaca;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Social Links */
        .social-links-footer {
            display: flex;
            gap: 15px;
        }
        
        .social-links-footer a {
      
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
         .social-links-footer a:hover {
            background: #ffffff;
                 color: var(--gold-medium);
            transform: translateY(-5px);
        }
        /* Footer Lists */
        .footer-list {
            list-style: none;
            padding: 0;
        }
        
        .footer-list li {
            margin-bottom: 12px;
        }
        
        .footer-list a {
            color: #cacaca;;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }
        
        /* Contact Info */
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            color: #cacaca;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer .contact-info i {
            
            color: var(--gold-medium);
            color: white;
            margin-right: 15px;
            min-width: 20px;
            margin-top: 4px;
        }
        
        /* Newsletter */
        .newsletter-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 0;
            margin: 40px 0;
        }
        
        .newsletter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
        }
        
        .newsletter-text h4 {
              color: white;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .newsletter-text p {
          color: #cacaca;
            margin: 0;
        }
        
        .newsletter-form {
            display: flex;
            flex: 1;
            min-width: 300px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 20px;
            border: none;
           
            background: rgba(36, 31, 8, 0.5);
            color: white;
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        
        .newsletter-button {
            background: linear-gradient(135deg, var(--gold-medium) 0%, var(--secondary) 100%);
            color: var(--primary);
            border: none;
            padding: 0 25px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 0 4px 4px 0;
            transition: all 0.3s ease;
        }
        
        /* Footer Bottom */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            text-align: center;
        }
        
        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .copyright {
              color: #cacaca;
            /* margin: 0; */
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            gap: 15px;
        }
        
        .footer-links a {
             color: #cacaca;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        /* Hover Effects */
        .footer-list a:hover,
        .footer-list a:focus {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-list a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--gold-medium);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .footer-list a:hover::before,
        .footer-list a:focus::before {
            opacity: 1;
        }
        
        .social-links a:hover {
            color: var(--gold-light);
            background: rgba(212, 175, 55, 0.2);
            transform: translateY(-3px);
        }
        
        .newsletter-button:hover {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--gold-medium) 100%);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
               /* Footer Legal Links */
.footer-legal {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #cacaca;                /* matches other footer link color */
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 8px;
    display: inline-block;
}

.footer-legal a:hover {
    color: var(--secondary);       /* gold – #dfb429 */
}

.footer-legal .separator {
    color: #cacaca;
    opacity: 0.5;
    font-weight: 300;
    display: inline-block;
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .newsletter-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .newsletter-form {
                width: 100%;
            }
            
            .footer-bottom-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .tabs-container {
                flex-direction: column;
            }
            
            .properties-container {
                flex-direction: column;
            }
            
            .property-filters {
                width: 100%;
            }
        }

        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
          
        }
         
        @media (max-width: 768px) {
            .contact-card {
            padding: 30px;
            display:block;
            align-items: flex-start;
            gap: 20px;
        }
       
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .lifecycle-nav {
                flex-wrap: wrap;
            }
            
             .contact-container iframe{
            max-width: 400px;
            height: 400px;
        }

        }